INSTRUCTIONS



Linear Search

Linear Search is the most basic searching algorithm.
It goes through the array elements one by one to search the element.


Worst - Case Complexity : O(n)
Average - Case Complexity : O(n)
Best - case Complexity :O(1)